home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-9.10-netbook-remix-PL.iso / casper / filesystem.squashfs / usr / include / linux / reiserfs_fs.h < prev    next >
C/C++ Source or Header  |  2009-10-16  |  907b  |  36 lines

  1. /*
  2.  * Copyright 1996, 1997, 1998 Hans Reiser, see reiserfs/README for licensing and copyright details
  3.  */
  4.  
  5.                 /* this file has an amazingly stupid
  6.                    name, yura please fix it to be
  7.                    reiserfs.h, and merge all the rest
  8.                    of our .h files that are in this
  9.                    directory into it.  */
  10.  
  11. #ifndef _LINUX_REISER_FS_H
  12. #define _LINUX_REISER_FS_H
  13.  
  14. #include <linux/types.h>
  15. #include <linux/magic.h>
  16.  
  17.  
  18. /*
  19.  *  include/linux/reiser_fs.h
  20.  *
  21.  *  Reiser File System constants and structures
  22.  *
  23.  */
  24.  
  25. /* ioctl's command */
  26. #define REISERFS_IOC_UNPACK        _IOW(0xCD,1,long)
  27. /* define following flags to be the same as in ext2, so that chattr(1),
  28.    lsattr(1) will work with us. */
  29. #define REISERFS_IOC_GETFLAGS        FS_IOC_GETFLAGS
  30. #define REISERFS_IOC_SETFLAGS        FS_IOC_SETFLAGS
  31. #define REISERFS_IOC_GETVERSION        FS_IOC_GETVERSION
  32. #define REISERFS_IOC_SETVERSION        FS_IOC_SETVERSION
  33.  
  34.  
  35. #endif                /* _LINUX_REISER_FS_H */
  36.